[DEPRECATED] Use form field endpoints instead. Delete a specific incident custom field selection by id
curl --request DELETE \
--url https://api.rootly.com/v1/incident_custom_field_selections/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "1",
"type": "incident_custom_field_selections",
"attributes": {
"custom_field_id": 172,
"incident_id": "9d9bde4e-8742-46c8-8e8c-e19015395ae8",
"value": "Nemo laudantium debitis non.",
"selected_option_ids": []
}
}
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
incident_custom_field_selection deleted
The response is of type object
.
Was this page helpful?
curl --request DELETE \
--url https://api.rootly.com/v1/incident_custom_field_selections/{id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"id": "1",
"type": "incident_custom_field_selections",
"attributes": {
"custom_field_id": 172,
"incident_id": "9d9bde4e-8742-46c8-8e8c-e19015395ae8",
"value": "Nemo laudantium debitis non.",
"selected_option_ids": []
}
}
}